home *** CD-ROM | disk | FTP | other *** search
/ Software USA 4 #11 / Software USA Volume 4.11.iso / mac / Educational / mac06 / usr / include / utime.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-07-24  |  220 b   |  17 lines  |  [TEXT/SPM ]

  1. /* mac06©1997,98 by HNS/DSITRI hns@computer.org
  2. ** utime.h
  3. */
  4.  
  5. #pragma once
  6.  
  7. #include "time_t.h"
  8.  
  9. struct utimbuf
  10.     {
  11.     time_t     actime;
  12.     time_t    modtime;
  13.     };
  14.  
  15. int utime(const char *name, const struct utimbuf *tp);
  16.  
  17. /* EOF */